/* Grundlegendes Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

header {
  background: #003366;
  color: white;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  width: 100px;
  height: auto;
  border-radius: 8px;
}

header h1 {
  font-size: 1.8rem;
}

nav {
  margin-top: 1rem;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: white;
  background-color: #0055a5;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-menu li a:hover {
  background-color: #0072ce;
}

main {
  padding: 2rem 1rem;
}

section {
  margin-bottom: 2rem;
}
/*
h2 {
  margin-bottom: 1rem;
  color: #003366;
}
*/
/* Allgemeines Tabellenstyling */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* Tabellenzeilen */
table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Tabellenzellen */
table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

/* Erste Spalte fetten */
table td:first-child {
  font-weight: bold;
  width: 15%;
  color: #333;
}

/* Hover-Effekt */
table tr:hover {
  background-color: #eef5ff;
}

/* Optional: responsive Scroll für kleine Bildschirme */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Optional: Textformatierungen */
table td strong {
  color: #0056b3;
}


footer {
  text-align: center;
  padding: 1rem;
  background-color: #eee;
  color: #555;
}
/* Responsive Menü-Button */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-top: 1rem;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #003366;
    padding: 1rem 0;
  }

  .nav-menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}




/* Modernes Styling für Ergebnis-Links */
main ul li a {
  display: inline-block;
  background-color: #f0f4f8;
  color: #004080;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  margin: 8px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

main ul li a:hover,
main ul li a:focus {
  background-color: #004080;
  color: #ffffff;
  border-color: #003060;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 64, 128, 0.2);
}

main ul {
  list-style: none;
  padding: 0;
}

main ul li {
  margin-bottom: 15px;
}

p, h1, h2, h3	{
				margin: 1em;
				text-indent: none;
			}			